Before we post this week's points, let's go trough the lottery process. It should be fair and remove any
fiddling possibilities.
Example with three competitors:
1st has 20 tickets
2nd has 15 tickets
3rd has 5 tickets
Tickets are numbered, so that 1st person gets numbers 0-19, 2nd driver gets numbers 20-34 and third driver gets numbers 35-39.
On Tuesday 30.6.2020, at 8am UTC we take the newest random numbers from
here.
Then we calculate a simple equation: "random number" mod "total number of tickets"
So in this case it would be: 1029 mod 40 = 29
Ticket number 29 belongs to second driver, so he is winner.
Then we take the second random number and calculate again:
8126 mod 40 = 6
Ticket number 6 belongs to first driver, so he is winner.
If the second random random number lands on the same winner, we take next random number until we get two winners.
We will also do final check of all the competitors before the lottery if they have followed the rules.
Final list of eligible winners with their ticket numbers will be announced before the lottery.